home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TEST / RAND.C < prev    next >
C/C++ Source or Header  |  1997-02-12  |  275b  |  18 lines

  1. #include <qlib.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4.  
  5. void main(void) {
  6.   word a,v;
  7.  
  8.   randomize();  //so each time it's different
  9.   for(a=0;a<200;a++) {
  10.     v=random(32);
  11.     printf("%i ",v);
  12.     if (v>=32) {
  13.       printf("opps!");exit(0);
  14.     }
  15.   }
  16. }
  17.  
  18.